home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 476-500 / disk_500 / wiconify / wiconify.lzh / Sample.Init < prev    next >
Text File  |  1991-04-19  |  9KB  |  206 lines

  1. ; wIconify.Init
  2. ;
  3. ;    This is a sample initialization file for wIconify.
  4. ;
  5. ;    Comments are preceded by the semi-colon (;) or are enclosed
  6. ;    in C comment delimiters /* like this */
  7.      /*  C comments can even be nested /* like this */ */
  8.  
  9.  
  10. Iconify_Key:    LBUTTON RBUTTONPRESS     ; specifies the key or button that
  11. ;                                        ; iconifies windows.
  12. ;
  13. ;   other qualifiers include:
  14. ;       LSHIFT, RSHIFT, CAPSLOCK, CONTROL, LALT, RALT, LCOMMAND, RCOMMAND,
  15. ;       LAMIGA, RAMIGA, NUMERICPAD, REPEAT, LBUTTON, RBUTTON, MBUTTON
  16. ;
  17. ;   other keys include:
  18. ;       LBUTTONPRESS, RBUTTONPRESS, F1 ... F10, ESC, ENTER, RETURN,
  19. ;       BACKSPACE, DELETE, HELP, TAB, SPACE, and \nn where nn is a hex
  20. ;       value that specifies a keycode (e.g., \4C is the up arrow key)
  21. ;
  22. ;   Qualifiers are separated by a space, a plus (+), or a bar (|).
  23. ;   The key or button is preceded by a space.
  24. ;   A qualifier preceded by a dash (-) is a "disqualifier", i.e., this
  25. ;    qualifier must NOT be present when the key is pressed.
  26.  
  27. Change_Refresh: LALT            ; the qualifiers that convert a SMART_REFRESH
  28.                                 ; window into a SIMPLE_REFRESH one
  29.  
  30. Activation_Key: LSHIFT F1       ; the key or button that activates the wIconify
  31.                                 ; backdrop window on the current screen
  32.  
  33. Color_Map:                      ; sets the color map for wIconify screens
  34. ;
  35. ;   Each color is on a separate line, and there can be up to 32 colors
  36. ;   specified.  An asterisk (*) or equal sign (=) means that the color is to
  37. ;   be the Intuition default for that color number (the first four colors are
  38. ;   set by Preferences, and the others are default ugly colors).
  39. ;
  40. ;   To specify a color, you must supply the red, green, and blue gun values,
  41. ;   each as a hex digit.  E.g., FFF is bright white and 000 is black, while
  42. ;   F00, 0F0, and 00F are bright red, bright green and bright blue.
  43.  
  44.    *    ; use default WB colors
  45.    *
  46.    *
  47.    *
  48.  
  49. Menu_Keys:                      ; sets the menu key equivalents
  50. ;
  51. ;  Menus are specified by name (e.g., OPEN, CLEAN_UP, and ACTIVE_SCREEN).
  52. ;  The letter following the menu name is used as the command key eqivalent.
  53. ;  It must be a printable character, or a blank.  If no letter appears, then
  54. ;  the menu item will not have a command key equivalent.  It is not possible
  55. ;  to change the command keys for the NEW SCREEN depth items at this time.
  56.  
  57.    OPEN     O
  58.    CLOSE    C
  59.    /* etc. */
  60.    END
  61.    CLOSE_SCREEN
  62.  
  63.  
  64. Default_Flags:                      ; specifies the default icon flags
  65. ;
  66. ;  Possible values are:
  67. ;
  68. ;       NOSAVEPOS       icons will not remember their old positions when opened
  69. ;       NOCLOSE         the CLOSE menu item will not be available
  70. ;       NOMOVE          icons can not be moved from its initial position
  71. ;       NOMULTISELECT   multiple icons can not be selected at once
  72. ;       CHANGEREFRESH   SMART_REFRESH windows will be converted to
  73. ;                       SIMPLE_REFRESH windows automatically when iconified
  74. ;       NOORGANIZE      icons will not be affected by the ORGANIZE menu
  75. ;       NOICONIFY       windows will not be able to be (re)iconified
  76. ;
  77. ; (most of these flags are most appropriate for icons supplied by programs
  78. ; that use the programer's interface, but I've includeded them for 
  79. ; completeness)
  80.  
  81.  
  82. Ignore_Screen:                      ; specifies a list of screens to ignore
  83.    MicroEmacs                       ;  e.g., ignore the Emacs screen
  84.  
  85. HiRes_CLICommand:    NEWSHELL       ; the command for NEW CLI on HiRes screens
  86. LoRes_CLICommand:    NEWSHELL       ; the command for NEW CLI on LoRes screens
  87. ;
  88. ;   Other options might be:
  89. ;
  90. ;       NEWSHELL NEWCON:0/0/320/50/LoResShell
  91. ;
  92. ;   for the LoRes_CLICommand, or
  93. ;
  94. ;       NEWSHELL FROM S:WICONIFY-SCRIPT
  95. ;
  96. ;   where S:WICONIFY-SCRIPT includes CD, PATH, STACK and wSetSysRequest
  97. ;   commands, and then executes S:SHELL-STARTUP.
  98.  
  99.  
  100. Priority:  0                        ; the priority for wIconify
  101.  
  102. Open_On:        Active_Screen       ; where to open windows
  103. ;
  104. ;   Other options are:
  105. ;       ACTIVE_SCREEN       open windows on the active screen
  106. ;       CURRENT_WB          open windows on the current WB screen
  107. ;       REAL_WB             open windows on the real WB (i.e., take no action)
  108.  
  109. Size_To_Fit:    TRUE                ; tells whether to resize windows or not
  110.  
  111.  
  112. Default_Image:                      ; sepcifies the default icon image
  113. ;
  114. ;   Each character (past the openning blanks) represents one pixel of
  115. ;   the image.  The character is the pen color for that pixel.  For a two 
  116. ;   bitplane screen, the colors range from 0 to 3; for 3 bitplanes they are
  117. ;   from 0 to 7;  For 4 bitplanes, they are 0 to 9 and a to f (they must
  118. ;   be lower case letters); for 5 bitplanes, they are 0-9 and a-f for the 
  119. ;   first sixteen pen colors, and then SHIFT 0-9 and SHIFT A-F for pens
  120. ;   from 16 to 31.  I.e., ) is pen 16, ! is pen 17, @ is pen 18, # is pen
  121. ;   19, up through * as pen 24 and ( as pen 25.  Then A is pen 26, up through
  122. ;   F as pen 31.  This allows you to specify a five bitplane image if you
  123. ;   want.
  124. ;
  125. ;   Be careful that your images make sense in fewer bitplanes, though.  You
  126. ;   want to use a mix of even and odd numbers so that something will show up
  127. ;   on one bitplane screens.
  128. ;
  129. ;   The standard size, is 41 by 18, though you can specify larger or smaller
  130. ;   icons if you want.
  131.  
  132.    1111111111111111111111111111111111111111
  133.    1111111111111111111111111111111111111111
  134.    1111111111111111111111111111111111111111
  135.    0011112222222222221111222222222222111100
  136.    0011112222222222221111222222222222111100
  137.    0011112222222222221111222222222222111100
  138.    0011112222222222221111222222222222111100
  139.    0011112222222222221111222222222222111100
  140.    0011112222222222221111222222222222111100
  141.    0011111111111111111111111111111111111100
  142.    0011111111111111111111111111111111111100
  143.    0011113333333333333333333333333333111100
  144.    0011113333333333333333333333333333111100
  145.    0011113333333333333333333333333333111100
  146.    0011113333333333333333333333333333111100
  147.    0011113333333333333333333333333333111100
  148.    0011113333333333333333333333333333111100
  149.    1111111111111111111111111111111111111111
  150.    1111111111111111111111111111111111111111
  151.  
  152.  
  153. Default_Select:                     ; the image used for the selected icon
  154. ;
  155. ;   The select image is optional.  If it is not present, an inverted copy of
  156. ;   the default image will be used.  If provided, the select image should
  157. ;   be the same dimensions as the default image.
  158.  
  159.    2222222222222222222222222222222222222222
  160.    2222222222222222222222222222222222222222
  161.    2222222222222222222222222222222222222222
  162.    0022221111111111112222111111111111222200
  163.    0022221111111111112222111111111111222200
  164.    0022221111111111112222111111111111222200
  165.    0022221111111111112222111111111111222200
  166.    0022221111111111112222111111111111222200
  167.    0022221111111111112222111111111111222200
  168.    0022222222222222222222222222222222222200
  169.    0022222222222222222222222222222222222200
  170.    0022220000000000000000000000000000222200
  171.    0022220000000000000000000000000000222200
  172.    0022220000000000000000000000000000222200
  173.    0022220000000000000000000000000000222200
  174.    0022220000000000000000000000000000222200
  175.    0022220000000000000000000000000000222200
  176.    2222222222222222222222222222222222222222
  177.    2222222222222222222222222222222222222222
  178.  
  179.  
  180. Default_Mask:                   ; the mask for the selected icon when dragged
  181. ;
  182. ;   The mask can be made up only of 1's and 0's, and must be the same size
  183. ;   as the select image (if given) or the default image (if there is no
  184. ;   select image).  0's in the mask represent places that you can "see
  185. ;   through" the icon when it is being dragged around.
  186.  
  187.    1111111111111111111111111111111111111111
  188.    1111111111111111111111111111111111111111
  189.    1111111111111111111111111111111111111111
  190.    0011110000000000001111000000000000111100
  191.    0011110000000000001111000000000000111100
  192.    0011110000000000001111000000000000111100
  193.    0011110000000000001111000000000000111100
  194.    0011110000000000001111000000000000111100
  195.    0011110000000000001111000000000000111100
  196.    0011111111111111111111111111111111111100
  197.    0011111111111111111111111111111111111100
  198.    0011110000000000000000000000000000111100
  199.    0011110000000000000000000000000000111100
  200.    0011110000000000000000000000000000111100
  201.    0011110000000000000000000000000000111100
  202.    0011110000000000000000000000000000111100
  203.    0011110000000000000000000000000000111100
  204.    1111111111111111111111111111111111111111
  205.    1111111111111111111111111111111111111111
  206.